home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / ppageoptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  796 b   |  32 lines

  1. /*
  2.  *--- PPageOptions.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:48 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PPageOptions__
  10. #define __PPageOptions__
  11.  
  12. #include "PGetPageOptions.h"
  13.  
  14. class PPageOptions
  15. {
  16.  
  17. public:
  18.  
  19.     PPageOptions(PMBool bDoubleSided, PMBool bFacingPages) { SetOptions(bDoubleSided, bFacingPages); }
  20.     PPageOptions(PGetPageOptions &pageOptions) { SetOptions(pageOptions.bDoubleSided, pageOptions.bFacingPages); }
  21.  
  22. private:
  23.  
  24.     PPageOptions();
  25.     
  26.     void SetOptions(PMBool bDoubleSided, PMBool bFacingPages);
  27. };
  28.  
  29. #endif
  30.  
  31. // end of PPageOptions.h
  32.